home *** CD-ROM | disk | FTP | other *** search
- program Good_Programming_Style;
-
- begin
-
- Write('Programming style ');
- Write ('is a matter of ');
- Writeln ('personal choice');
-
- Write('Each person ');
- Write ('can choose ');
- Writeln ('his own style');
-
- Write('He can be ');
- Write ('very clear, or ');
- Writeln ('extremely messy');
- end.
-
-
-
-
- { Result of execution
-
- Programming style is a matter of personal choice
- Each person can choose his own style
- He can be very clear, or extremely messy
-
- }